home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Languages / RLaB 1.18c / rlib / epsilon.r < prev    next >
Encoding:
Text File  |  1994-09-20  |  145 b   |  14 lines  |  [TEXT/RLAB]

  1. //
  2. //  Compute machine epsilon
  3. //
  4.  
  5. epsilon = function() 
  6. {
  7.   eps = 1.0;
  8.   while((eps + 1.0) != 1.0) 
  9.   {
  10.     eps = eps/2.0;
  11.   }
  12.   return eps;
  13. };
  14.